home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / snip1292.zip / WEIRD.C < prev    next >
C/C++ Source or Header  |  1992-12-26  |  272b  |  14 lines

  1. #include<stdio.h>
  2.  
  3. char *c[] = { "ENTER", "NEW", "POINT", "FIRST" };
  4. char **cp[] = { c+3, c+2, c+1, c };
  5. char ***cpp = cp;
  6.  
  7. main()
  8. {
  9.     printf("%s", **++cpp);
  10.     printf("%s ", *--*++cpp+3);
  11.     printf("%s", *cpp[-2]+3);
  12.     printf("%s\n", cpp[-1][-1]+1);
  13. }
  14.